home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / Time_Normalize.c < prev    next >
C/C++ Source or Header  |  1988-06-27  |  1KB  |  54 lines

  1. /* 
  2.  * Time_Normalize.c --
  3.  *
  4.  *    Source code for the Time_Normalize library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Time_Normalize.c,v 1.2 88/06/27 17:23:35 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <spriteTime.h>
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * Time_Normalize --
  28.  *
  29.  *      Normalizes a time value such that the microseconds portion
  30.  *    is less than 1 million.
  31.  *
  32.  * Results:
  33.  *     A normalized time value.
  34.  *
  35.  * Side effects:
  36.  *     None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. void
  42. Time_Normalize(timePtr)
  43.     register Time    *timePtr;
  44. {
  45.     while (timePtr->microseconds >= ONE_SECOND) {
  46.     timePtr->seconds    += 1;
  47.     timePtr->microseconds    -= ONE_SECOND;
  48.     }
  49.     while (timePtr->microseconds < 0) {
  50.     timePtr->seconds    -= 1;
  51.     timePtr->microseconds    += ONE_SECOND;
  52.     }
  53. }
  54.